Global.CreateString


Create a string global and initialise.

prototype Global.CreateString( string name,
                               int access,
                               string initial_value );

Parameters:
name : The name of the global to create.
access : The access type of the global.
initial_value : The initial string value of the global.

Return value:
None.

Notes:
If a global already exists with this name it is overwritten, unless the original is read only.

See also:
Global.CreateInt, Global.CreateFloat, Global.CreateBool, Global.CreateHandle, Global.CreateList, Global.CreateSet.